home *** CD-ROM | disk | FTP | other *** search
/ Sprite 1984 - 1993 / Sprite 1984 - 1993.iso / src / lib / c / list / List_Insert.c < prev    next >
C/C++ Source or Header  |  1990-11-27  |  2KB  |  62 lines

  1. /* 
  2.  * List_Insert.c --
  3.  *
  4.  *    Source code for the List_Insert library procedure.
  5.  *
  6.  * Copyright 1988 Regents of the University of California
  7.  * Permission to use, copy, modify, and distribute this
  8.  * software and its documentation for any purpose and without
  9.  * fee is hereby granted, provided that the above copyright
  10.  * notice appear in all copies.  The University of California
  11.  * makes no representations about the suitability of this
  12.  * software for any purpose.  It is provided "as is" without
  13.  * express or implied warranty.
  14.  */
  15.  
  16. #ifndef lint
  17. static char rcsid[] = "$Header: /sprite/src/lib/c/list/RCS/List_Insert.c,v 1.5 90/11/27 11:06:20 ouster Exp $ SPRITE (Berkeley)";
  18. #endif not lint
  19.  
  20. #include <stdio.h>
  21. #include "list.h"
  22.  
  23. extern void panic();
  24.  
  25. /*
  26.  * ----------------------------------------------------------------------------
  27.  *
  28.  * List_Insert --
  29.  *
  30.  *    Insert the list element pointed to by itemPtr into a List after 
  31.  *    destPtr.  Perform a primitive test for self-looping by returning
  32.  *    failure if the list element is being inserted next to itself.
  33.  *
  34.  * Results:
  35.  *    None.
  36.  *
  37.  * Side effects:
  38.  *    The list containing destPtr is modified to contain itemPtr.
  39.  *
  40.  * ----------------------------------------------------------------------------
  41.  */
  42. void
  43. List_Insert(itemPtr, destPtr)
  44.     register    List_Links *itemPtr;    /* structure to insert */
  45.     register    List_Links *destPtr;    /* structure after which to insert it */
  46. {
  47.     if (itemPtr == (List_Links *) NIL || destPtr == (List_Links *) NIL
  48.         || !itemPtr || !destPtr) {
  49.     panic("List_Insert: itemPtr (%x) or destPtr (%x) is NIL.\n",
  50.           (unsigned int) itemPtr, (unsigned int) destPtr);
  51.     return;
  52.     }
  53.     if (itemPtr == destPtr) {
  54.     panic("List_Insert: trying to insert something after itself.\n");
  55.     return;
  56.     }
  57.     itemPtr->nextPtr = destPtr->nextPtr;
  58.     itemPtr->prevPtr = destPtr;
  59.     destPtr->nextPtr->prevPtr = itemPtr;
  60.     destPtr->nextPtr = itemPtr;
  61. }
  62.